Skip to content

Instantly share code, notes, and snippets.

@lodwicz
lodwicz / notebook.md
Last active April 11, 2026 00:11
Several tricks for several tasks

Different commands for different tasks

[[b]a]sh

Displace Cygwin's \usr\local directory elsewhere in the system.

mount -f "C:/your/path/here" /usr/local

LLM Wiki

A pattern for building personal knowledge bases using LLMs.

This is an idea file, it is designed to be copy pasted to your own LLM Agent (e.g. OpenAI Codex, Claude Code, OpenCode / Pi, or etc.). Its goal is to communicate the high level idea, but your agent will build out the specifics in collaboration with you.

The core idea

Most people's experience with LLMs and documents looks like RAG: you upload a collection of files, the LLM retrieves relevant chunks at query time, and generates an answer. This works, but the LLM is rediscovering knowledge from scratch on every question. There's no accumulation. Ask a subtle question that requires synthesizing five documents, and the LLM has to find and piece together the relevant fragments every time. Nothing is built up. NotebookLM, ChatGPT file uploads, and most RAG systems work this way.

@senrecep
senrecep / README.md
Last active April 11, 2026 00:10
AI-driven setup and migration guide for Claude Code ↔ OpenCode with auto-install, skills, MCP servers, and bidirectional sync

AI Code Assistant Ecosystem Setup

AI-driven setup and optimization guide for Claude Code, OpenCode, and cross-platform tools

Quick Start: Share this gist and say:

Read this gist and set up my project: https://gist.github.com/senrecep/98d3583717581a4138bac62344261f6f
@naruse
naruse / .md
Last active April 11, 2026 00:08
Getting back my ibook G4 booting into OS9 by correcting Open Firmware

Hey Everyone, I wanted to add to this.

Recently I messed up my OS9 boot and my ibook wasnt booting. It took me a couple of weeks to figure out how to add this script on the nvram in open firmware, because I didnt have any access to any OS. Here is what I did. (All of the commands I am going to post below are in Open Firmware)

In open firmware there is a variable called nvramrc, this var contains the contents (in open firmware language) of the script shared above. This is the script that patches your ibook G4 to make it bootable.

First thing to check is if you have the var set up in open firmware (if you dont, dont worry, I will explain how to adapt the bash script above to make it work) To do so type: printenv nvramrc

@gildotdev
gildotdev / SpaceCoastSec Meetup 2026-04-08.md
Last active April 9, 2026 13:53
SpaceCoastSec Meetup 2026-04-08

class: note tags:

  • cyber-security/spacecoastsec source: related: description: aliases: [] created: 2026-04-08 19:21 updated: 2026-04-09 09:46
@kahliburke
kahliburke / demo_gate_progress.jl
Created March 22, 2026 23:28
Kaimon issue #14: println/progress diagnostic scripts
# ─────────────────────────────────────────────────────────────────────────────
# Demo: Streaming progress to agents via Gate.progress and GateTools
#
# Gate.progress() sends real-time progress updates to the MCP client during
# long-running tool calls. This is the preferred method for agents to receive
# incremental updates without waiting for the full result.
# ─────────────────────────────────────────────────────────────────────────────
using Kaimon.Gate: GateTool, progress